home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
grap_cad
/
lncad
/
lcad
/
install.bat
next >
Wrap
DOS Batch File
|
1992-04-25
|
1KB
|
42 lines
Echo off
Cls
Echo .
Echo *==================[ LaunchCAD Install Program ]=====================*
Echo .
Echo This program will extract files from the LaunchCAD ZIP archive to your
Echo AutoCAD directory.
Echo .
Echo Press any key to continue or CTRL-C to quit now.
Echo .
Pause > nul
If [%1] == [] GoTo :usage
If [%2] == [] GoTo :usage
If Not Exist %1\unzip.exe GoTo baddrive
If Not Exist %2\acad.exe GoTo badacad
:ok
Echo .
Echo Extracting LaunchCAD files...
%1\unzip %1\lcad\*.zip %2 /o
ReName %2\!read.me! readme.lc
ReName %2\order.doc order.lc
Echo .
Echo Done
Echo .
Echo Use LCAD.BAT to start LaunchCAD or add the line CALL LCAD to your
Echo ACAD.BAT file on the line containing ACAD.
Echo Once LaunchCAD is loaded configure, select AutoSetup and save.
Echo .
GoTo End
:badacad
Echo Error: %2 is Not your AutoCAD directory.
GoTo usage
:baddrive
Echo Error: the file UNZIP.EXE can Not be found on drive %1
:usage
Echo .
Echo In order for Install to work properly you must provide both the
Echo floppy drive and your AutoCAD directory:
Echo .
Echo Usage: INSTALL A: C:\ACAD
:End